runtime.hmap.newoverflow (method)

12 uses

	runtime (current package)
		map.go#L239: func (h *hmap) newoverflow(t *maptype, b *bmap) *bmap {
		map.go#L701: 		newb := h.newoverflow(t, b)
		map.go#L1328: 					dst.b = h.newoverflow(t, dst.b)
		map.go#L1637: 			dst = h.newoverflow(t, dst)
		map_fast32.go#L183: 		insertb = h.newoverflow(t, b)
		map_fast32.go#L282: 		insertb = h.newoverflow(t, b)
		map_fast32.go#L452: 					dst.b = h.newoverflow(t, dst.b)
		map_fast64.go#L183: 		insertb = h.newoverflow(t, b)
		map_fast64.go#L284: 		insertb = h.newoverflow(t, b)
		map_fast64.go#L456: 					dst.b = h.newoverflow(t, dst.b)
		map_faststr.go#L302: 		insertb = h.newoverflow(t, b)
		map_faststr.go#L471: 					dst.b = h.newoverflow(t, dst.b)